home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / tools / mdem4a.exe / GO.BAT < prev    next >
Encoding:
DOS Batch File  |  1992-06-12  |  1.4 KB  |  34 lines

  1. echo off
  2. CLS
  3. echo This is a typical .BAT file for making an .EXE file of WATCH_ME.1st.
  4. echo It uses the utility "WWP_MAKE.EXE" to produce "DEMO.EXE."
  5. echo
  6. echo To conserve archive space and to show you how easy it is to make
  7. echo an executible .EXE file, we want you to do it yourself. We leave
  8. echo the individual file for you to investigate later.  See how we
  9. echo implemented the menus and hid the "Help," and Order Form.
  10. echo
  11. echo The resulting file will be "branded," using a seed number of 1234567
  12. echo and a serial number of 1000. If the correct validation code, in this
  13. echo case - 2236 - is not used as the command line argument, the 'nag' screen
  14. echo buried in "Branding Your Own Creation" will appear as intended.
  15. echo
  16. echo For a more detailed discussion of branding run WWP_MAKE with no command
  17. echo line arguments or review the material in MANUAL.TXT.
  18. echo
  19. echo It's really very simple.  Here goes!
  20. echo on
  21. WWP_MAKE DEMO.EXE WATCH_ME.1ST 1234567,1000
  22. echo off
  23. echo Now let's see the result!!
  24. DEMO
  25. CLS
  26. echo If you would like to see the presentation again, this time without the
  27. echo 'nag' screen found in the "Branding Your Creation" menu selection,
  28. echo let's try using the validation code, '2236', the validation code for
  29. echo serial number 1000 and seed number 1234567 which was imbedded in
  30. echo DEMO.EXE during its creation.
  31. DEMO 2236
  32.  
  33.  
  34.